home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2646 / planet.eka < prev    next >
Encoding:
Text File  |  1992-03-23  |  376 b   |  18 lines

  1. ; equations for planet design
  2. ; used by Jerry Pournelle for science fiction books
  3.  
  4. ; i illuminence, L luminosity, R distance to earth,
  5. ; M stellar mass, P period, all relative to sol/earth
  6.  
  7. ; basic equations
  8. i = L / R^2
  9. M P^2 = R^3
  10.  
  11. ; values for a particular story
  12. i = 0.97
  13. L = 0.93
  14. M = 1.2
  15. ; exclude extreme values of P, R
  16. 1e-10 < P < 1e10
  17. 1e-10 < R < 1e10
  18.